distutils `requires' tag

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • jimburton

    #1

    distutils `requires' tag

    Hi, I'm using python 2.3.5 and want to use distutils to distribute a
    module that depends on another - is there any way to specify that?
    Something like:

    setup(name='aim spy',
    ...
    requires = { 'jpype': '*'},
    )

    Thanks

  • Diez B. Roggisch

    #2
    Re: distutils `requires' tag

    jimburton schrieb:[color=blue]
    > Hi, I'm using python 2.3.5 and want to use distutils to distribute a
    > module that depends on another - is there any way to specify that?[/color]

    Use setuptools. It can do such a thing.

    Diez

    Comment

    • jimburton

      #3
      Re: distutils `requires' tag


      Diez B. Roggisch wrote:[color=blue]
      > jimburton schrieb:[color=green]
      > > Hi, I'm using python 2.3.5 and want to use distutils to distribute a
      > > module that depends on another - is there any way to specify that?[/color]
      >
      > Use setuptools. It can do such a thing.
      >
      > Diez[/color]

      Many thanks.

      Comment

      Working...